home *** CD-ROM | disk | FTP | other *** search
-
- /*
- ** OPTIONS.C - This is the module containing the code for SQL for
- ** executing Set/GetConnect/StmtOption.
- **
- ** (C) Copyright 1991, 1992 By Microsoft Corp.
- */
-
-
- #include "sample.h"
-
- SQL_PRE_API RETCODE SQL_API
- SQLSetConnectOption(
- HDBC hdbc,
- UWORD fOption,
- UDWORD vParam)
- {
- return SQL_SUCCESS;
- }
-
-
- SQL_PRE_API RETCODE SQL_API
- SQLSetStmtOption(
- HSTMT hstmt,
- UWORD fOption,
- UDWORD vParam)
- {
- return SQL_SUCCESS;
- }
-
-
- SQL_PRE_API RETCODE SQL_API
- SQLGetConnectOption(
- HDBC hdbc,
- UWORD fOption,
- PTR pvParam)
- {
- return SQL_SUCCESS;
- }
-
-
- SQL_PRE_API RETCODE SQL_API
- SQLGetStmtOption(
- HSTMT hstmt,
- UWORD fOption,
- PTR pvParam)
- {
- return SQL_SUCCESS;
- }
-